www.gusucode.com > VC++ P2P下载软件源代码-源码程序 > VC++ P2P下载软件源代码-源码程序\code\windows\PropertiesDlg.cpp

    //Download by http://www.NewXing.com
/* 
 * Copyright (C) 2001-2003 Jacek Sieka, j_s@telia.com
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include "stdafx.h"
#include "../client/DCPlusPlus.h"
#include "Resource.h"

#include "PropertiesDlg.h"

#include "GeneralPage.h"
#include "DownloadPage.h"
#include "UploadPage.h"
#include "AppearancePage.h"
#include "AdvancedPage.h"
#include "Advanced2Page.h"

ResourceManager::Strings titles[] = {
	ResourceManager::SETTINGS_GENERAL,
	ResourceManager::SETTINGS_DOWNLOADS,
	ResourceManager::SETTINGS_UPLOADS,
	ResourceManager::SETTINGS_APPEARANCE,
	ResourceManager::SETTINGS_LOGS,
	ResourceManager::SETTINGS_ADVANCED
};

PropertiesDlg::PropertiesDlg(SettingsManager *s) : CPropertySheet("Settings")
{
	pages[0] = new GeneralPage(s);
	pages[1] = new DownloadPage(s);
	pages[2] = new UploadPage(s);
	pages[3] = new AppearancePage(s);
	pages[4] = new Advanced2Page(s);
	pages[5] = new AdvancedPage(s);

	for(int i=0; i<numPages; i++) {
		pages[i]->setTitle(ResourceManager::getInstance()->getString(titles[i]));
		AddPage(pages[i]->getPSP());
	}

	// Hide "Apply" button
	m_psh.dwFlags |= PSH_NOAPPLYNOW | PSH_NOCONTEXTHELP;
	m_psh.dwFlags &= ~PSH_HASHELP;
}

PropertiesDlg::~PropertiesDlg()
{
	for(int i=0; i<numPages; i++) {
		delete pages[i];
	}
}

void PropertiesDlg::write()
{
	for(int i=0; i<numPages; i++)
	{
		// Check HWND of page to see if it has been created
		const HWND page = PropSheet_IndexToHwnd((HWND)*this, i);

		if(page != NULL)
			pages[i]->write();
	}
}

LRESULT PropertiesDlg::onOK(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& bHandled)
{
	write();
	bHandled = FALSE;
	return TRUE;
}

/**
 * @file
 * $Id: PropertiesDlg.cpp,v 1.5 2003/04/15 10:14:02 arnetheduck Exp $
 */